﻿
/* 主视觉区 */
.main-bg {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.main-content {
    width: 78%;
    margin: 0 auto;
    padding-top: 90px;
    text-align: center;
}

.main-title {
    font-family: 'Source Han Sans CN', sans-serif; /* 字体 */
    font-size: 60px;
    font-weight: 700;
    color: #1B1F31;
    line-height: 1.6;
}

    .main-title .blue {
        font-size: 48px; /* 字体大小 */
        color: #002F41; /* 备用颜色 */
        background: linear-gradient(0deg, #1B4EA0 0.12%, #2A9FD1 100%); /* 渐变背景 */
        -webkit-background-clip: text; /* 仅裁剪文字部分 */
        -webkit-text-fill-color: transparent; /* 填充文字为透明 */
    }



/* 弈绘2D 区 */
.feature-section {
    width: 74%;
    margin: 25vh auto;
    display: flex;
    justify-content: space-between;
}

.feature-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-right: 10vh;
    align-items: flex-start;
}

.feature-title {
    font-size: 48px;
    font-weight: 700;
    color: #002F41;
}
    .feature-title p {
        font-size: 24px;
        font-weight: 400;
        opacity: 0.6;
        margin-bottom: 3vh;
    }

.feature-desc {
    font-size: 18px;
    color: #002F41;
    text-align:left;
}


.feature-img {
    width: 85vh;
    min-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .feature-img img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 4px 18px rgba(36,169,255,0.12);
    }



/* 合作伙伴 区 */
.partner-section {
    width: 74%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items:center;
}

.partner-title {
    font-size: 48px;
    font-weight: 700;
    color: #1B1F31;
    margin-bottom: 4vh;
}

.partner-logos {
    width: 100%;
    height: 20vh;
    margin: 0 auto;
    display: flex; /* 水平排列图片 */
    align-items: center;
    transition: transform 0.5s ease; /* 平滑过渡效果 */
    overflow: hidden;
    position: relative;
}
    .partner-logos img {
        width: 36vh;
        min-width:120px;
        height: 9vh;
        min-height:30px;
        object-fit: contain;
        position: absolute;
    }
        .partner-logos img:hover {
            filter: none;
        }

/* 数据统计 区 */
.stat-section {
    width: 80%;
    margin: 0 auto ;
    text-align: center;
}

.stat-title {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 48px; /* 字体大小 */
    color: #002F41; /* 备用颜色 */
    background: linear-gradient(145deg, #1B4EA0 0.12%, #2A9FD1 100%); /* 渐变背景 */
    -webkit-background-clip: text; /* 仅裁剪文字部分 */
    -webkit-text-fill-color: transparent; /* 填充文字为透明 */
}

.stat-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10vh;
    gap: 10px;
}

.stat-block {
    flex: 1;
    font-size: 30px;
    font-weight: 700;
    color: #002F41;
}
    .stat-block p {
        font-size: 18px;
        opacity: 0.4;
        margin-top: 4px;
    }
    .stat-block small {
        font-size: 20px;
        margin-left: 6px;
        color: #2A9FD1;
        font-weight: normal;
    }

.gradient-text {
    font-size: 60px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif; /* 字体 */
    background: linear-gradient(145deg, #1B4EA0 20%, #2A9FD1 100%);  /*渐变背景 */
    -webkit-background-clip: text; /* 仅裁剪文字部分 */
    -webkit-text-fill-color: transparent; /* 填充文字为透明 */
}


.stat-network {
    width: 100%;
}

.case-bg {
    width: 100%;
    height: 80vh;
    margin-top: 15vh;
    position: relative;
    overflow: hidden;
}

.case-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.case-first-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.case-second-img {
    position: absolute;
    top: 0;
    left: 30%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1); /* 旋转 180° */

}

.case-title {
    width: 70vh;
    min-width:550px;
    height: 35vh;
    margin-left:14%;
    z-index: 1;
    display: flex;
    align-items: center;
}
    .case-title h1 {
        font-weight: 700;
        color: #127CBE;
        font-size: 48px;
        margin-bottom:3vh;
        font-family: 'Roboto', sans-serif; /* 字体 */
        background: linear-gradient(0deg, #1B4EA0 0.12%, #2A9FD1 100%); /* 渐变背景 */
        -webkit-background-clip: text; /* 仅裁剪文字部分 */
        -webkit-text-fill-color: transparent; /* 填充文字为透明 */
    }

    .case-desc {
        font-size: 24px;
        line-height: 1.6;
        color: #002F41;
        opacity: 0.4;
    }

.case-logo-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #002F41;
    opacity: 0.6;
}

.case-logo-carousel {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 86%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 40px;
}


.case-logo-client {
    width: 82%;
    height: 68px;
    margin: 0 auto;
    display: flex; /* 水平排列图片 */
    align-items: center;
    transition: transform 0.5s ease; /* 平滑过渡效果 */
    overflow: hidden;
    position: relative;
}
    .case-logo-client img {
        width: 180px;
        object-fit: contain;
        position: absolute;
    }

/* 新闻 区 */
.news-section {
    width: 74%;
    margin: 0 auto;
}

.news-title {
    font-size: 48px;
    font-weight: 700;
    color: #1B1F31;
    text-align: center;
    margin: 8vh 0;
}
    .news-title h1 {
        font-size: 60px;
        font-weight: 700;
        color: #18396b;
        text-align: left;
    }

    .news-title h2 {
        font-size: 48px;
        font-weight: 700;
        color: #18396b;
        text-align: left;
    }

.news-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between; /* 水平平均分布 */
    gap:36px;
}

.news-card {
    min-width: 300px;
    width: 50vh;
    height: 45vh;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(120,160,200,0.09);
    margin-bottom:36px;
}

.news-img {
    display: block;
    justify-content:center;
    width: 92%;
    height:65%;
    margin: 2vh;
    border-radius: 16px;
    object-fit: cover;
}

.news-content {
    padding: 0 2vh;
}

.news-title-card {
    font-size: 18px;
    font-weight: 700;
    color: #1B1F31;
    height: 56px;
}

.news-date {
    font-size: 14px;
    color: #88A;
    float: right;
    opacity: 0.6;
    margin-top: 2vh;
}

.news-btn-area {
    text-align: center;
    padding: 5vh;
}

.news-btn {
    background: none;
    color: #127CBE;
    border: 1.5px solid #127CBE;
    border-radius: 24px;
    padding: 8px 34px;
    font-size: 16px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background .15s, color .15s;
}

    .news-btn img {
        height: 16px;
    }

    .news-btn:hover {
        background: #127CBE;
        color: #fff;
    }

.more {
    text-align: center;
    margin: 42px 0;
}

    .more a {
        color: #218dff;
        font-size: 16px;
        letter-spacing: 1px;
    }

        .more a:hover {
            text-decoration: underline;
        }

/* 底部 CTA */
.bottom-cta {
    width: 74%;
    padding: 10vh 0;
    text-align: center;
    border-radius: 20px;
    margin: 8vh auto;
}

.bottom-cta-title {
    font-size: 28px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 28px;
}


.bottom-cta-btn {
    margin-top: 38px;
    background-color: #fff; /* 背景颜色改为白色 */
    border: none;
    border-radius: 28px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background .2s, color .2s; /* 添加颜色过渡效果 */
}
    .bottom-cta-btn span {
        color: #002F41; /* 备用颜色 */
        background: linear-gradient(0deg, #1B4EA0 0.12%, #2A9FD1 100%); /* 渐变背景 */
        -webkit-background-clip: text; /* 仅裁剪文字部分 */
        -webkit-text-fill-color: transparent; /* 填充文字为透明 */
    }
    .bottom-cta-btn img {
        height: 24px;
        display: inline-block;
    }

    .bottom-cta-btn:hover {
        color: blue; /* 字体颜色改为白色 */
        background-color:floralwhite
    }

.carousel-container {
    position: relative;
    margin: 20vh auto;
    width: 100%;
    max-width: 160vh;
}

.main-rotate-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    height: 40vh;
    position: relative;

}

    .main-rotate-row img {
        width: 30%;
        height: 30vh;
        border-radius: 12px;
        background: #e8f3fa;
        object-fit: contain;
        box-shadow: 0 2px 14px rgba(80,160,200,0.13);
        transition: all 0.5s ease;
        position: absolute;
        cursor: pointer;
    }

        .main-rotate-row img.active {
            width: 75%;
            height: 64vh;
            z-index: 10;
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(80,160,200,0.3);
            left: 50%;
            transform: translateX(-50%) scale(1.1);
        }

        .main-rotate-row img.prev {
            width: 55%;
            height: 50vh;
            z-index: 5;
            left: 30%;
            transform: translateX(-50%);
            opacity: 0.8;
        }

        .main-rotate-row img.next {
            width: 55%;
            height: 50vh;
            z-index: 5;
            right: 30%;
            transform: translateX(50%);
            opacity: 0.8;
        }

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8vh;
    height: 8vh;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 20;
    border: none;
    font-size: 20px;
    color: #333;
}

    .nav-button:hover {
        background-color: rgba(232, 243, 250, 0.9);
    }


@media (max-width: 768px) {
    .main-rotate-row img {
        width: 80%;
        height: 25vh;
    }

        .main-rotate-row img.active {
            width: 90%;
            height: 28vh;
        }

        .main-rotate-row img.prev,
        .main-rotate-row img.next {
            width: 70%;
            height: 23vh;
        }

    .nav-button {
        width: 40px;
        height: 40px;
    }
}